matrix-mod/Dockerfile
aarbit 0907ae5385
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Updates Dockerfile port to match expectation
2025-02-12 23:43:47 -06: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 8084
CMD [ "npm", "run", "preview" ]