pbr-ayct-backend/Dockerfile
wangobango 1dc93c5f0d added tests
test

test

add jenkinsfile

test

test

change to jenkinsfile

fix to jenkinsfile

asd

asd

asd

asd

asd
2021-12-01 12:12:39 +01:00

12 lines
225 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", "ayct-backend/app.py"]