polygon-gas-price-oracle/Dockerfile

8 lines
96 B
Docker
Raw Permalink Normal View History

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