Lilleman
d6fd4e705f
Better resilience against crashes Even better resilience against crashes Fixed stuff Renamed API service Fixed some paths Simplified error handling Updated README
11 lines
104 B
Docker
11 lines
104 B
Docker
FROM node:16.8.0-slim
|
|
|
|
WORKDIR /srv
|
|
|
|
COPY package* ./
|
|
|
|
RUN npm ci
|
|
|
|
COPY . ./
|
|
|
|
CMD ["npm", "run", "test"] |