mirror of
https://github.com/NovaOSS/nova-betterchat.git
synced 2024-11-25 15:23:59 +01:00
Add Dockerfile
This commit is contained in:
parent
0302c5301d
commit
d265985dfa
2
.dockerignore
Normal file
2
.dockerignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
/.github
|
||||
/Dockerfile
|
20
Dockerfile
Normal file
20
Dockerfile
Normal file
|
@ -0,0 +1,20 @@
|
|||
FROM node:alpine
|
||||
|
||||
RUN addgroup -S appgroup && \
|
||||
adduser -S appuser -G appgroup && \
|
||||
mkdir -p /home/appuser/app && \
|
||||
chown appuser:appgroup /home/appuser/app
|
||||
USER appuser
|
||||
|
||||
RUN yarn config set prefix ~/.yarn && \
|
||||
yarn global add serve
|
||||
|
||||
WORKDIR /home/appuser/app
|
||||
COPY --chown=appuser:appgroup package.json yarn.lock ./
|
||||
RUN yarn install --frozen-lockfile
|
||||
COPY --chown=appuser:appgroup . .
|
||||
|
||||
RUN yarn build
|
||||
EXPOSE 3000
|
||||
|
||||
CMD ["/home/appuser/.yarn/bin/serve", "-s", "dist", "-l", "3000"]
|
Loading…
Reference in a new issue