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 4f6fbc4196 - Show all commits

View File

@ -1,12 +1,14 @@
FROM nginx:alpine
RUN apt-get update && apt-get install -y nodejs npm
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . /usr/share/nginx/html
COPY . .
RUN npm run build