mirror of
https://github.com/runyanjake/jakeswestcoast.git
synced 2025-10-04 23:37:29 -07:00
15 lines
202 B
Docker
15 lines
202 B
Docker
FROM python:3.10-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
EXPOSE 5000
|
|
|
|
ENV FLASK_APP=app.py
|
|
ENV FLASK_ENV=development
|
|
|
|
CMD ["flask", "run", "--host=0.0.0.0"]
|