Add a task to update vue build in Dockerfile

This commit is contained in:
Ryan Pandya 2023-05-16 13:46:41 -04:00
parent 528d75470f
commit 6f577190c5

View File

@ -1,5 +1,10 @@
FROM node:16 FROM node:16
# Export static site into lifetracker-server
WORKDIR lifetracker-vue
RUN npm install
RUN npm run build-only
# Create app directory # Create app directory
WORKDIR /usr/src/app WORKDIR /usr/src/app