FROM node:16-alpine
ENV API_HOST=0.0.0.0
WORKDIR /app
COPY . .
RUN npm install
EXPOSE 3014
CMD ["npm", "run", "start"]