mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-12-22 08:16:28 +00:00
Nicco
a5d98b76bd
* locale from lokalise * version bump * update dependencies * show size with overhead * use base64 instead of hex and refactor a bit * changelog & readme * size limit * locale * add sync for svelte * refarcor create & add loading animation * changelog
27 lines
516 B
Docker
27 lines
516 B
Docker
# FRONTEND
|
|
FROM node:16-alpine as client
|
|
WORKDIR /tmp
|
|
RUN npm install -g pnpm@7
|
|
COPY ./frontend ./
|
|
RUN pnpm install
|
|
RUN pnpm exec svelte-kit sync
|
|
RUN pnpm run build
|
|
|
|
|
|
# BACKEND
|
|
FROM rust:1.61-alpine as backend
|
|
WORKDIR /tmp
|
|
RUN apk add libc-dev openssl-dev alpine-sdk
|
|
COPY ./backend ./
|
|
RUN cargo build --release
|
|
|
|
|
|
# RUNNER
|
|
FROM alpine
|
|
WORKDIR /app
|
|
COPY --from=backend /tmp/target/release/cryptgeon .
|
|
COPY --from=client /tmp/build ./frontend/build
|
|
ENV REDIS=redis://redis/
|
|
EXPOSE 5000
|
|
ENTRYPOINT [ "/app/cryptgeon" ]
|