File size: 319 Bytes
5b2898d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# pull official base image
FROM python:3.9.5-slim-buster

# set work directory
WORKDIR /usr/src/app

# install dependencies
COPY ./requirements.txt .
RUN pip3 install --upgrade pip wheel \
    && pip3 install -r requirements.txt

# copy project
COPY . .

USER root
EXPOSE 8080
CMD ["/bin/bash", "-c", "python3 main.py"]