matrix-mod/Dockerfile
aarbit 6af9436544
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Adds Dockerfile and Woodpecker file for automated builds
2024-07-28 16:26:34 -05:00

17 lines
212 B
Docker

FROM node:18-alpine
LABEL maintainer="Alex Arbit <aarbit@gmail.com>"
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
RUN npm run build
EXPOSE 8083
CMD [ "npm", "run", "preview" ]