Skip to content

Commit 6a5e432

Browse files
committed
ci: test new ci
1 parent fcf1c99 commit 6a5e432

File tree

3 files changed

+51
-0
lines changed

3 files changed

+51
-0
lines changed

.github/workflows/ci.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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

Dockerfile

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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"]

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ django-allauth==0.47.0
3333

3434
# Build dependencies
3535
setuptools==58.0.4
36+
wheel==0.37.0

0 commit comments

Comments
 (0)