pbr-ayct-backend/Dockerfile
Łukasz Jędyk 38094e7b26 docker fix
2022-01-24 20:06:33 +01:00

12 lines
229 B
Docker

FROM python:3
ENV DOCKER_APP True
USER root
WORKDIR /app
COPY . .
#RUN chmod u+x setup_core.sh
#RUN bash setup_core.sh
RUN pip3 install -r requirements.txt
EXPOSE 5000/udp
EXPOSE 5000/tcp
CMD ["python3","-m", "ayct_backend.app"]