mirror of
https://github.com/MiyakoYakota/search.0t.rocks.git
synced 2025-02-05 07:28:32 +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 |