Working on user, backend.

This commit is contained in:
charles-gauthereau
2024-10-27 11:51:53 +01:00
parent 1069b2c3ad
commit b62261896b
28 changed files with 7351 additions and 3383 deletions
+2
View File
@@ -9,6 +9,8 @@ WORKDIR /src
ARG DEV=false
RUN apt-get install openssh-client -y
RUN apt-get update
RUN apt-get install -y postgresql postgresql-client binutils libproj-dev gdal-bin
RUN pip install -r /tmp/requirements.txt
RUN pip install -r /tmp/requirements.dev.txt
+2 -2
View File
@@ -5,8 +5,8 @@ ENV NODE_OPTIONS="--max-old-space-size=8192"
WORKDIR /app
COPY package.json .
RUN yarn install -f
RUN npm install -f
CMD ["yarn", "run", "dev"]
CMD ["npm", "run", "dev"]