mirror of
https://github.com/0x1d/drift-keeper.git
synced 2025-12-16 02:58:45 +01:00
initial commit
This commit is contained in:
18
Dockerfile
Normal file
18
Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
FROM public.ecr.aws/bitnami/node:16
|
||||
RUN apt-get install git
|
||||
ENV NODE_ENV=production
|
||||
RUN npm install -g yarn
|
||||
RUN npm install -g typescript
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json ./
|
||||
|
||||
RUN yarn install
|
||||
COPY . .
|
||||
RUN yarn build
|
||||
RUN yarn install --production
|
||||
|
||||
EXPOSE 9464
|
||||
|
||||
CMD [ "yarn", "start", "--config-file=config.yaml" ]
|
||||
Reference in New Issue
Block a user