fix the workdir for the docker build image
All checks were successful
docker / nitter (push) Successful in 5m3s
docker / session (push) Successful in 11s
ups / ups (push) Successful in 48s

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn 2025-05-23 01:08:04 +03:00
parent c5ffb16340
commit bdfa3a3ba2
Signed by: ngn
GPG Key ID: A3654DF5AD9F641D

View File

@ -3,7 +3,7 @@ FROM nimlang/nim:2.2.0-alpine-regular as build
RUN apk --no-cache add libsass-dev pcre
WORKDIR /src/nitter
WORKDIR /src
COPY nitter.nimble .
RUN nimble install -y --depsOnly
@ -15,8 +15,6 @@ RUN nimble build -d:danger -d:lto -d:strip --mm:refc && \
# runs nitter
FROM alpine:latest
WORKDIR /src/
RUN apk --no-cache add pcre ca-certificates
WORKDIR /srv