Skip to content
Snippets Groups Projects
Commit ee750bfb authored by dw927's avatar dw927
Browse files

Added Dockerfile

parent 4bef1e7f
No related branches found
No related tags found
1 merge request!4Dwelsh
FROM python
WORKDIR /home
# syntax=docker/dockerfile:1
COPY . .
FROM python:3.8-slim-buster
WORKDIR /upload_service
RUN pip3 install flask
RUN pip3 install boto3
RUN pip3 install s3_provider
RUN pip3 install faker
COPY . .
EXPOSE 5001
CMD flask --app app run -p 5001
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment