prettyplayerfe/Dockerfile

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" ]