Skip to content

Commit

Permalink
noble
Browse files Browse the repository at this point in the history
  • Loading branch information
ivukotic committed May 24, 2024
1 parent abf7f41 commit 5b983be
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu
FROM ubuntu:noble

LABEL maintainer="Ilija Vukotic"

Expand All @@ -12,18 +12,18 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
build-essential \
git \
python3 \
python3-full \
python3-pip \
rsync \
software-properties-common \
unzip \
zip \
vim

RUN python3 -m pip install --upgrade pip
RUN pip3 install --upgrade pip

COPY src /src/

RUN python3 -m pip install --no-cache-dir -r /src/requirements.txt
RUN pip3 install --no-cache-dir -r /src/requirements.txt

EXPOSE 8050

Expand Down

0 comments on commit 5b983be

Please sign in to comment.