Skip to content

Commit

Permalink
Prepare frontend-old for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsen-bahrami committed Dec 27, 2024
1 parent 6eff07b commit 0501daa
Show file tree
Hide file tree
Showing 138 changed files with 55,569 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM node:16-alpine

WORKDIR /usr/src/app

# Copy package.json and package-lock.json
# Do this before adding other files so npm install is only re-run on docker
# image builds when project dependencies have changed, not when just any file
# has changed.
COPY package.*json ./
RUN npm install

# Add the rest of the project
ADD . .

EXPOSE 3000

# Run the server
CMD ["npm", "start"]
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GEOGCS["GCS_GDA_1994",DATUM["D_GDA_1994",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433],AUTHORITY["EPSG",4283]]
Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Loading

0 comments on commit 0501daa

Please sign in to comment.