Merge pull request 'Fix eslint COPY in Dockerfile' (#46) from jaakristioja/timelimit-server:fix-eslint-in-dockerfile into master

Reviewed-on: https://codeberg.org/timelimit/timelimit-server/pulls/46
This commit is contained in:
jonas-l
2026-05-17 15:16:39 +02:00
+1 -1
View File
@@ -5,7 +5,7 @@ RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app WORKDIR /usr/src/app
# Install app dependencies # Install app dependencies
COPY package.json package-lock.json tsconfig.json .eslintignore .eslintrc.js Readme.md /usr/src/app/ COPY package.json package-lock.json tsconfig.json eslint.config.mjs Readme.md /usr/src/app/
COPY src/ /usr/src/app/src/ COPY src/ /usr/src/app/src/
COPY scripts/ /usr/src/app/scripts/ COPY scripts/ /usr/src/app/scripts/
COPY other/ /usr/src/app/other/ COPY other/ /usr/src/app/other/