FROM node:18
WORKDIR /usr/share/dach
COPY package*.json ./
COPY . .
RUN npm install
EXPOSE 1337
ENTRYPOINT ["./docker-entrypoint.sh"]