forked from NoLog.cz/TrhlinaBar
16 lines
No EOL
356 B
Docker
16 lines
No EOL
356 B
Docker
FROM python:3.9.1-slim
|
|
COPY . /srv/flask_app
|
|
WORKDIR /srv/flask_app
|
|
|
|
RUN apt-get clean \
|
|
&& apt-get -y update
|
|
|
|
RUN apt-get -y install nginx \
|
|
&& apt-get -y install python3-dev \
|
|
&& apt-get -y install build-essential
|
|
|
|
RUN pip install -r requirements.txt --src /usr/local/src
|
|
|
|
COPY nginx.conf /etc/nginx
|
|
RUN chmod +x ./start.sh
|
|
CMD ["./start.sh"] |