13 lines
292 B
Docker
13 lines
292 B
Docker
FROM swr.eu-de.otc.t-systems.com/omnia-test/node:latest
|
|
# Set the working directory in the container
|
|
WORKDIR /usr/src/app
|
|
|
|
# Copy package.json and package-lock.json
|
|
COPY package*.json ./
|
|
|
|
# Install any needed packages
|
|
RUN npm install
|
|
|
|
# Bundle the app source inside the Docker image
|
|
COPY . .
|