12 lines
206 B
Docker
12 lines
206 B
Docker
ARG NODE_VERSION=alpine
|
|
|
|
FROM node:${NODE_VERSION}
|
|
WORKDIR /action
|
|
|
|
COPY src/ /action/src/
|
|
COPY entrypoint.sh /action/entrypoint.sh
|
|
|
|
RUN chmod +x /action/entrypoint.sh
|
|
|
|
ENTRYPOINT ["/action/entrypoint.sh"]
|