File tree 3 files changed +51
-0
lines changed
3 files changed +51
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : test Publish
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - test
7
+
8
+ jobs :
9
+ publish-test-image :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - name : Set up QEMU
13
+ uses : docker/setup-qemu-action@v2
14
+
15
+ - name : Set up Docker Buildx
16
+ uses : docker/setup-buildx-action@v2
17
+
18
+ - name : Login to DockerHub
19
+ uses : docker/login-action@v1
20
+ with :
21
+ registry : ghcr.io
22
+ username : abbastoof
23
+ password : ${{ secrets.GH_TOKEN }}
24
+
25
+ - name : Build and push
26
+ uses : docker/build-push-action@v3
27
+ with :
28
+ push : true
29
+ tags : ghcr.io/${{ github.repository }}:test
Original file line number Diff line number Diff line change
1
+ FROM python:3.11
2
+
3
+ ENV PYTHONDONTWRITEBYTECODE 1
4
+ ENV PYTHONUNBUFFERED 1
5
+
6
+ COPY ./requirements.txt requirements.txt
7
+ RUN python -m pip install --upgrade pip
8
+ RUN pip install setuptools==58.0.4 wheel
9
+ RUN pip --timeout=1000 install -r requirements.txt
10
+
11
+ WORKDIR /app
12
+
13
+ COPY . /app
14
+
15
+ RUN chown -R www-data:www-data /app
16
+
17
+ USER www-data
18
+
19
+ EXPOSE 8000
20
+
21
+ CMD ["manage.py" , "runserver" , "0.0.0.0:8000" ]
Original file line number Diff line number Diff line change @@ -33,3 +33,4 @@ django-allauth==0.47.0
33
33
34
34
# Build dependencies
35
35
setuptools == 58.0.4
36
+ wheel == 0.37.0
You can’t perform that action at this time.
0 commit comments