singlefile / Dockerfile
axebps's picture
Create Dockerfile
6940ab2 verified
raw
history blame contribute delete
192 Bytes
FROM capsulecode/singlefile
USER root
WORKDIR /app
COPY . /app
RUN apk add --no-cache py3-pip && pip install flask --break-system-packages
EXPOSE 7860
ENTRYPOINT ["python3", "/app/app.py"]