blob: b1799b3fbce93ce74e25d6c2412c2481c2f10a16 [file] [log] [blame]
# /********************************************************************************
# * Copyright (c) 2020 Contributors to the Eclipse Foundation
# *
# * See the NOTICE file(s) distributed with this work for additional
# * information regarding copyright ownership.
# *
# * This program and the accompanying materials are made available under the
# * terms of the Eclipse Public License v. 2.0 which is available at
# * http://www.eclipse.org/legal/epl-2.0.
# *
# * SPDX-License-Identifier: EPL-2.0
# ********************************************************************************/
# NODEJS BASE IMAGE
FROM node:12.16.3-alpine3.11
LABEL maintainer = "simon.reis@pta.de"
# set working directory
WORKDIR /app
# INSTALL AND CACHE APP DEPENDENCIES
COPY package.json /app/package.json
RUN npm install
# ADD APP
COPY . /app/
RUN ls -l
RUN npm run build
# EXPOSE PORT 3000
EXPOSE 3000
# RUN APPLICATION
CMD ["npm", "run", "start:prod"]