mirror of
https://github.com/exzork/gc-tools.git
synced 2024-11-22 07:08:12 +00:00
8 lines
172 B
Docker
8 lines
172 B
Docker
FROM node:18-slim
|
|
ADD . /gc_tools
|
|
WORKDIR /gc_tools
|
|
RUN ["yarn", "install"]
|
|
RUN ["yarn", "run", "build"]
|
|
CMD ["yarn","add","serve"]
|
|
CMD ["serve", "-s", "build"]
|
|
EXPOSE 3000 |