run apt update in dockerfile

This commit is contained in:
Rasmus Moorats 2024-05-09 12:58:50 +03:00
parent 0194402a68
commit 4bec9bb944
Signed by: xx
GPG key ID: FE14255A6AE7241C

View file

@ -1,6 +1,6 @@
FROM docker.io/nimlang/nim:2.0.2-ubuntu
RUN apt install -y postgresql-client
RUN apt update && apt install -y postgresql-client
WORKDIR /usr/src/app
COPY . /usr/src/app