File size: 373 Bytes
6a50bfd
18f20c0
6a50bfd
088e82e
18f20c0
069f6c0
bd51730
cf34ec0
75da33d
cf34ec0
75da33d
53e6f75
d0d14b6
75da33d
d0d14b6
 
c3c7539
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM debian:12.10

RUN apt -y update 
RUN apt install -y python3 python3-django python3-mysqldb

RUN mkdir app-itsz -p
WORKDIR app-itsz

COPY app ./mysite
WORKDIR mysite

RUN touch db.sqlite3
RUN ls -la
RUN chmod 777 db.sqlite3
RUN chmod 777 ./polls/migrations

CMD python3 manage.py makemigrations; \
    python3 manage.py migrate; \
    python3 manage.py runserver 0:7860