mirror of
https://github.com/actions/container-toolkit-action.git
synced 2025-12-10 11:56:49 +00:00
8 lines
92 B
Docker
8 lines
92 B
Docker
FROM node:slim
|
|
|
|
COPY . .
|
|
|
|
RUN npm install --production
|
|
|
|
ENTRYPOINT ["node", "/lib/main.js"]
|