28 lines
553 B

FROM node:14.5.0-alpine
# create destination directory
RUN mkdir -p /usr/src/kekkon
WORKDIR /usr/src/kekkon
# update and install dependency
RUN apk update && apk upgrade
RUN apk add git
# copy the app, note .dockerignore
COPY . /usr/src/kekkon/
RUN yarn install
# build necessary, even if no static files are needed,
# since it builds the server as well
RUN yarn build
# expose 3000 on container
EXPOSE 3000
# set app serving to permissive / assigned
ENV NUXT_HOST=0.0.0.0
# set app port
ENV NUXT_PORT=3000
# start the app
CMD [ "yarn", "start" ]