11 lines
177 B
Docker
11 lines
177 B
Docker
FROM node:lts-alpine
|
|
|
|
WORKDIR /action
|
|
|
|
COPY src/ /action/src/
|
|
COPY entrypoint.sh /action/entrypoint.sh
|
|
|
|
RUN chmod +x /action/entrypoint.sh
|
|
|
|
ENTRYPOINT ["/action/entrypoint.sh"]
|