Files
container-toolkit-action/Dockerfile

15 lines
369 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
2024-02-22 09:12:34 -05:00
# Set the working directory inside the container.
2023-09-15 12:42:04 -04:00
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"]