merge eva repos into single repository
This commit is contained in:
commit
200dd620ae
52 changed files with 2281 additions and 0 deletions
11
frontend/Dockerfile
Normal file
11
frontend/Dockerfile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
FROM node as builder
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
|
||||
RUN npm install
|
||||
RUN npm run build
|
||||
|
||||
FROM nginx:alpine
|
||||
COPY --from=builder /app/build/ /usr/share/nginx/html/
|
||||
RUN mkdir -p /tmp/osm/cache
|
||||
COPY nginx.conf /etc/nginx/nginx.conf
|
||||
Loading…
Add table
Add a link
Reference in a new issue