server/dockerfile
array-in-a-matrix 97c77d7bd7 add missing lib
2024-08-01 21:47:38 -04:00

15 lines
No EOL
287 B
Text

FROM nimlang/nim:latest AS builder
WORKDIR /src
COPY . /src
RUN apt-get -y update && apt-get -y upgrade && apt-get -y autoremove
RUN apt-get -y install libpq5
RUN nimble -y install jester norm checksums
RUN nimble build -d:release
ARG PORT=8080
EXPOSE $PORT
ENTRYPOINT ["./glimpse"]