11 lines
240 B
Docker
11 lines
240 B
Docker
FROM python
|
|
WORKDIR /code
|
|
ARG USERID
|
|
ARG GROUPID
|
|
RUN chown $USERID:$GROUPID /code
|
|
#RUN apt-get update && apt-get -y install python3-pip && apt-get -y dist-upgrade
|
|
COPY . .
|
|
RUN pip3 install -r requirements.txt
|
|
EXPOSE 80
|
|
CMD ["./wrapper.sh"]
|