You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM node:15.11.0-alpine3.13
|
|
RUN adduser dude --disabled-password --home /app --uid 412 && \
|
|
npm install -g npm@7.6.3 && \
|
|
npm install -g @quasar/cli && \
|
|
chmod 777 /app
|
|
USER dude
|
|
EXPOSE 8080
|
|
WORKDIR /app
|
|
CMD npm install && npx quasar dev |