Dockerfile
277 Bytes
FROM node:14
LABEL title="TFT-Webserver"
LABEL version="1.00"
# set working directory
WORKDIR /app
# install modules and dependencies
COPY package*.json ./
RUN npm install
# copy source codes
COPY ./ ./
# port-forward
EXPOSE 8484
#start application
CMD [ "npm", "start" ]