Skip to content

Commit

Permalink
CHG: fix dependabot actions
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelcarcamov committed Oct 1, 2024
1 parent d10570d commit 6e61b1c
Showing 1 changed file with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,38 @@
FROM ghcr.io/miguelcarcamov/gpuvmem:latest
FROM ubuntu:jammy
ENV DEBIAN_FRONTEND=noninteractive
ENV TZ=Etc/UTC
RUN apt-get update -y && \
apt-get install -y ca-certificates && \
apt-get install -y openssl && \
apt-get install -y software-properties-common && \
update-ca-certificates && \
apt-get update -y && \
add-apt-repository main && \
add-apt-repository universe && \
add-apt-repository restricted && \
add-apt-repository multiverse && \
apt-get update -y && \
apt-get install -y tzdata && \
apt-get install -y keyboard-configuration && \
apt-get install -y build-essential && \
apt-get install -y zlib1g-dev libncurses-dev && \
apt-get install -y libgdbm-dev libnss3-dev libssl-dev && \
apt-get install -y libreadline-dev libffi-dev wget && \
apt-get install -y --no-install-recommends && \
apt-get install -y python3-dev && \
apt-get install -y python3-pip && \
apt-get install -y python3-wheel && \
apt-get install -y python3-setuptools && \
apt-get install -y libblas-dev && \
apt-get install -y liblapack-dev && \
apt-get install -y liblapacke-dev && \
apt-get install -y git && \
apt-get install -y ImageMagick* && \
apt-get install -y xorg && \
apt-get install -y libgfortran5 && \
apt-get install -y libopenmpi-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* /tmp/* /var/tmp/*

RUN python3 --version
RUN pip3 --version
Expand Down

0 comments on commit 6e61b1c

Please sign in to comment.