Skip to content

Commit

Permalink
Use Ubuntu instead of Debian in docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
protik09 committed Apr 5, 2024
1 parent 7112565 commit f711673
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM debian:bullseye
FROM ubuntu:22.04
RUN apt update
RUN apt install -y python-is-python3 python3-pip
RUN apt-get install -y curl
RUN apt-get install ca-certificates
RUN curl -L -o tmp/keep-it-markdown-0.5.2.tar.gz https://github.com/djsudduth/keep-it-markdown/archive/refs/tags/0.5.2.tar.gz
RUN tar -zxvf tmp/keep-it-markdown-0.5.2.tar.gz
RUN pip install -r keep-it-markdown-0.5.2/requirements.txt
RUN curl -L -o tmp/keep-it-markdown-0.5.4.tar.gz refs/tags/0.5.4.tar.gz
RUN tar -zxvf tmp/keep-it-markdown-0.5.4.tar.gz
RUN pip install -r keep-it-markdown-0.5.4/requirements.txt
RUN pip install requests==2.23.0
RUN pip install gpsoauth==1.0.2
RUN pip install keyrings.alt
RUN pip install keyrings.alt

0 comments on commit f711673

Please sign in to comment.