core: add Snake using Typescript #7

Merged
Trianta merged 35 commits from snake into main 2024-11-09 01:26:09 -06:00
Showing only changes of commit 2967663a82 - Show all commits

View File

@ -8,9 +8,16 @@ COPY package*.json ./
RUN npm install RUN npm install
COPY . .
RUN npm run build RUN npm run build
COPY . /usr/share/nginx/html WORKDIR /usr/share/nginx/html
COPY index.html .
RUN mkdir -p /usr/share/nginx/html/src
COPY src/*.css ./src
RUN cp /app/build/* ./src
EXPOSE 80 EXPOSE 80