test ci!
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
hexlocation 2024-12-26 13:26:45 +01:00
parent bf1881ccb5
commit 5f54220113
Signed by: hex
GPG key ID: A19EFFAAF8C00FCF
3 changed files with 61 additions and 2 deletions

32
Dockerfile Normal file
View file

@ -0,0 +1,32 @@
FROM alpine:latest AS compile
RUN mkdir /build
WORKDIR /build
# Add edge repository
RUN echo -e "\nhttps://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
RUN apk update && \
apk add pnpm nodejs npm nim nimble go-task git build-base
ADD . .
RUN go-task docker-build-frontend
RUN go-task docker-build-backend
RUN echo $(pwd) $(ls)
FROM alpine:latest
WORKDIR /app
RUN apk update && \
apk add sqlite-dev
COPY --from=compile /build/gw /app/
COPY --from=compile /build/public /app/public
CMD ["/app/gw"]