mirror of
https://github.com/MiyakoYakota/search.0t.rocks.git
synced 2025-02-05 15:37:21 +00:00
10 lines
108 B
Docker
10 lines
108 B
Docker
|
FROM node:18-alpine
|
||
|
|
||
|
WORKDIR /app
|
||
|
COPY . .
|
||
|
|
||
|
RUN npm install
|
||
|
|
||
|
CMD ["npx", "ts-node", "index.ts"]
|
||
|
|
||
|
EXPOSE 3000
|