polygon-gas-price-oracle/Dockerfile

8 lines
96 B
Docker
Raw Permalink Normal View History

2024-04-11 23:23:08 +00:00
FROM node:20-alpine
WORKDIR /app
COPY . .
RUN yarn && yarn build
2024-04-11 23:49:27 +00:00
2024-04-11 23:23:08 +00:00
ENTRYPOINT ["yarn", "start"]