Skip to content
Snippets Groups Projects

Draft: Resolve "docker"

Open Herman Andersen Dyrkorn requested to merge 51-docker into master
2 files
+ 21
12
Compare changes
  • Side-by-side
  • Inline

Files

Dockerfile 0 → 100644
+ 17
0
# syntax=docker/dockerfile:1
FROM ubuntu:20.04
RUN apt-get update -y && \
apt-get install -y python3-pip python-dev
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 5000
ENTRYPOINT [ "python3" ]
CMD [ "run.py" ]
\ No newline at end of file
Loading