Добавил возможность смены картинки при нажатии на картинку

This commit is contained in:
B4D_US3R 2024-12-14 15:58:59 +05:00
parent 9dbcc53fd1
commit 0d782ec32e
5 changed files with 1051 additions and 8 deletions

View file

@ -2,9 +2,13 @@ FROM golang:1.22-alpine
WORKDIR /app
COPY ./main.html /app/main.html
COPY ./index.html /app/index.html
COPY ./static /app/static
COPY ./src /app/src
COPY ./package.json /app/package.json
RUN apk add --no-cache npm && npm install -D vite && npm install && npm run build
VOLUME /app/images