mirror of
https://github.com/cupcakearmy/hagen-control-station.git
synced 2025-09-05 23:00:39 +00:00
initial
This commit is contained in:
13
Dockerfile
Normal file
13
Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
FROM node:16-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN npm -g i pnpm
|
||||
|
||||
COPY package.json pnpm-lock.yaml ./
|
||||
RUN pnpm i --frozen-lockfile
|
||||
|
||||
COPY src tsconfig.json ./
|
||||
RUN pnpm run build
|
||||
|
||||
CMD [ "node", "." ]
|
Reference in New Issue
Block a user