14 lines
196 B
Docker
14 lines
196 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN pip install flask gunicorn
|
|
|
|
EXPOSE 80
|
|
ENV PORT=80
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|