Commit 8bbc059f authored by 神楽坂玲奈's avatar 神楽坂玲奈

test

parent 70599466
FROM node FROM node:16.3.0-alpine3.13
RUN apt-get update
RUN apt-get install -y kmod ipset gettext
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY package.json /usr/src/app/ WORKDIR /app
RUN npm install
COPY . /usr/src/app
CMD [ "./start.sh" ] COPY package*.json ./
RUN npm ci
COPY . .
CMD [ "./node_modules/.bin/ts-node", "src/main.ts"]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment