chore: dockerfile cleanup

This commit is contained in:
ThatOneCalculator 2022-12-17 09:22:25 -08:00
parent 9d3acc4786
commit 81afcce69b
No known key found for this signature in database
GPG key ID: 8703CACD01000000
4 changed files with 4 additions and 4 deletions

View file

@ -17,7 +17,7 @@ RUN yarn plugin import workspace-tools
# Install Dependencies
RUN yarn install
RUN yarn build
RUN yarn rebuild
# Remove git files
RUN rm -rf .git

View file

@ -27,7 +27,7 @@ services:
db:
restart: always
image: docker.io/postgres:12.2-alpine
image: docker.io/postgres:13.9-alpine
networks:
- network
env_file:

View file

@ -29,7 +29,7 @@ services:
db:
restart: unless-stopped
image: docker.io/postgres:12.2-alpine
image: docker.io/postgres:13.9-alpine
networks:
- calcnet
env_file:

View file

@ -24,7 +24,7 @@
//#region Detect language & fetch translations
const v = localStorage.getItem('v') || VERSION;
const supportedLangs = LANGS;
let lang = localStorage.getItem('lang');
if (lang == null || !supportedLangs.includes(lang)) {