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: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
|
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 the specified command within the container
|
2023-09-15 12:42:04 -04:00
|
|
|
ENTRYPOINT ["node", "/usr/src/app/dist/index.js"]
|