mirror of
https://gitlab.com/djdietrick/docs
synced 2026-05-02 21:00:54 -04:00
9 lines
126 B
Docker
9 lines
126 B
Docker
FROM node AS build
|
|
WORKDIR /build
|
|
COPY . .
|
|
RUN npm install && npm run build
|
|
|
|
EXPOSE 8080
|
|
|
|
ENTRYPOINT [ "npm", "run", "serve"]
|