0
0
Fork 0
mirror of https://git.verdigado.com/NB-Public/simple-wkd.git synced 2024-12-06 14:52:41 +01:00
simple-wkd/Dockerfile

30 lines
703 B
Text
Raw Normal View History

FROM rust:1.68-alpine3.17 AS bin-builder
2023-04-16 16:04:14 +02:00
2023-04-16 22:20:45 +02:00
COPY backend .
RUN apk add --no-cache openssl-dev openssl-libs-static musl-dev
RUN export OPENSSL_STATIC=1 && \
export OPENSSL_LIB_DIR=/usr/lib &&\
export OPENSSL_INCLUDE_DIR=/usr/include/openssl && \
cargo build --release
2023-04-16 16:04:14 +02:00
FROM node:19-alpine3.17 AS webpage-builder
2023-04-16 16:04:14 +02:00
COPY website .
RUN npm install -g pnpm && \
pnpm install && \
pnpm run build
COPY assets assets
RUN mv dist assets/webpage
FROM alpine:3.17
2023-04-16 16:04:14 +02:00
2023-04-16 18:28:16 +02:00
WORKDIR /wkd
RUN adduser --no-create-home --disabled-password wkd && \
chown -R wkd:wkd /wkd
2023-04-16 18:28:16 +02:00
USER wkd
2023-04-16 16:04:14 +02:00
COPY --from=webpage-builder assets assets
2023-04-16 18:28:16 +02:00
COPY --from=bin-builder target/release/simple-wkd wkd
ENTRYPOINT [ "/wkd/wkd" ]