mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-19 20:36:19 +00:00
Nabarun Gogoi
ee63e33cc5
* Upgrade eslint and additional lint changes * Upgrade typescript version to v5 --------- Co-authored-by: Dhruv Srivastava <dhruvdhs.ds@gmail.com>
8 lines
98 B
Docker
8 lines
98 B
Docker
FROM node:18.15.0-alpine3.16
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN apk --update --no-cache add git && yarn
|