Files
container-toolkit-action/Dockerfile

13 lines
318 B
Docker
Raw Normal View History

2023-09-15 12:32:25 -04:00
# Set the base image to use for subsequent instructions
FROM node:slim
2019-08-01 18:04:11 +00:00
2023-09-15 12:42:04 -04:00
# Create a directory for the action code
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
2023-09-15 12:32:25 -04:00
# Copy the repository contents to the container
COPY . .
2019-08-01 18:04:11 +00:00
2023-09-15 12:32:25 -04:00
# Run the specified command within the container
2023-09-15 12:42:04 -04:00
ENTRYPOINT ["node", "/usr/src/app/dist/index.js"]