mirror of
https://github.com/ButlerLogic/action-autotag.git
synced 2026-07-04 19:53:38 +07:00
5 lines
85 B
Docker
5 lines
85 B
Docker
FROM node:13-alpine
|
|
ADD ./app /app
|
|
WORKDIR /app
|
|
RUN npm i
|
|
ENTRYPOINT ["npm", "start"] |