1
0
mirror of https://github.com/chubin/cheat.sh.git synced 2026-06-20 13:16:44 +02:00
Files
cheat.sh/Dockerfile
T
Anatoli Babenia 7095b7bddb [docker] Switch to Ubuntu 20.04
It successfully passes tests on GitHub CI
2020-11-15 14:28:39 +03:00

14 lines
229 B
Docker

FROM ubuntu:20.04
### copying app sources
WORKDIR /app
COPY . /app
RUN pip install --upgrade -r requirements.txt
## fetching cheat sheets
RUN python3 lib/fetch.py fetch-all
ENTRYPOINT ["python3", "-u", "bin/srv.py"]
CMD [""]