mirror of
https://github.com/johndoe6345789/snippet-pastebin.git
synced 2026-05-03 09:54:52 +00:00
11370b55b2
Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
30 lines
234 B
Docker
30 lines
234 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY app.py .
|
|
|
|
RUN mkdir -p /app/data
|
|
|
|
EXPOSE 5000
|
|
|
|
CMD ["python", "app.py"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|