mirror of
https://github.com/ButlerLogic/action-autotag.git
synced 2024-11-10 10:21:08 +07:00
6 lines
117 B
Docker
6 lines
117 B
Docker
FROM node:13-alpine
|
|
LABEL version=1.1.0
|
|
ADD ./app /app
|
|
WORKDIR /app
|
|
RUN cd /app && npm i
|
|
CMD ["node", "/app/main.js"] |