mirror of
https://github.com/stevenhowes/osgrid-server.git
synced 2026-05-26 15:53:42 +01:00
10 lines
174 B
Docker
10 lines
174 B
Docker
FROM node:12.15.0
|
|
WORKDIR /usr/src/app
|
|
COPY package*.json ./
|
|
RUN npm --version && node --version
|
|
RUN npm install
|
|
COPY . .
|
|
EXPOSE 9090
|
|
CMD ["node", "-r", "esm", "index.js" ]
|
|
|