mirror of
https://github.com/morbalint/kemkas.git
synced 2026-07-17 19:03:46 +00:00
d04e7e6cef
* add basic e2e tests * add e2e to ci * fix docker pull * fix images in ci * maybe this will help * push latest on main for e2e * fix e2e on main * rename jobs
19 lines
353 B
Docker
19 lines
353 B
Docker
FROM node:24.14.1-trixie AS builder
|
|
|
|
WORKDIR "/src"
|
|
|
|
COPY ["package.json", "yarn.lock", "./"]
|
|
|
|
RUN yarn install
|
|
|
|
COPY . .
|
|
|
|
RUN yarn build
|
|
|
|
FROM nginx:1.29.7-alpine3.23 AS proxy
|
|
|
|
LABEL org.opencontainers.image.source = "https://github.com/morbalint/kemkas"
|
|
|
|
COPY --from=builder "/src/dist" "/usr/share/nginx/html"
|
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|