mirror of
https://gitlab.com/wirelos/sprocket-ui.git
synced 2025-12-14 05:56:50 +01:00
15 lines
211 B
Docker
15 lines
211 B
Docker
FROM node:latest
|
|
|
|
# Create app directory
|
|
RUN mkdir -p /usr/app
|
|
WORKDIR /usr/app
|
|
VOLUME /usr/app/config
|
|
|
|
# Install app
|
|
COPY . /usr/app
|
|
RUN yarn install
|
|
RUN yarn build:frontend
|
|
|
|
EXPOSE 8080
|
|
#CMD [ "yarn", "app" ]
|