mirror of
https://github.com/ButlerLogic/action-autotag.git
synced 2024-11-10 10:21:08 +07:00
5 lines
78 B
Docker
5 lines
78 B
Docker
FROM node:13-alpine
|
|
ADD ./app /app
|
|
WORKDIR /app
|
|
RUN npm i
|
|
CMD ["npm", "start"] |