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