mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2025-12-14 10:51:52 +01:00
12 lines
189 B
Docker
12 lines
189 B
Docker
FROM alpine:3.20
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
RUN apk add --update nodejs npm
|
|
RUN npm install --global serve
|
|
|
|
RUN npm install
|
|
RUN npm run generate
|
|
|
|
CMD ["npx", "serve", "-s", "./.output/public"] |