hfcrypt-demo / Dockerfile
mrfakename's picture
Upload 5 files
8d3b423
raw
history blame contribute delete
No virus
122 Bytes
FROM python:3.9
RUN useradd -m -u 1000 user
USER user
WORKDIR /app
COPY . /app
EXPOSE 7860
CMD ["sh", "hfcryptdecrypt.sh"]