Files
container-toolkit-action/Dockerfile
T

11 lines
249 B
Docker
Raw Normal View History

2023-09-15 12:32:25 -04:00
# Set the base image to use for subsequent instructions
2019-08-02 09:09:37 -04:00
FROM node:slim
2019-08-01 18:04:11 +00:00
2023-09-15 12:32:25 -04:00
# Copy the repository contents to the container
2019-08-02 09:09:37 -04:00
COPY . .
2019-08-01 18:04:11 +00:00
2023-09-15 12:32:25 -04:00
# RUN npm install --production
2019-08-02 09:09:37 -04:00
2023-09-15 12:32:25 -04:00
# Run the specified command within the container
ENTRYPOINT ["node", "/dist/index.js"]