feat(admin-web): add KROW logo and title to admin console
feat(admin-web): display environment badge in admin console feat(admin-web): configure Nginx for SPA and copy config fix(Makefile): fix typo in CR_ADMIN_IMAGE_URI variable assignment feat(firebase): update launchpad title to "Launchpad"
This commit is contained in:
@@ -19,17 +19,8 @@ FROM nginx:alpine
|
||||
# Copy the built files from the build stage
|
||||
COPY --from=build /app/dist /usr/share/nginx/html
|
||||
|
||||
# Copy our custom Nginx configuration
|
||||
# This config is for a Single Page Application (SPA) and listens on port 8080 for Cloud Run
|
||||
RUN echo 'server {
|
||||
listen 8080;
|
||||
server_name _;
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}' > /etc/nginx/conf.d/default.conf
|
||||
# Copy the custom Nginx configuration
|
||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||
|
||||
# Expose the port Nginx is listening on
|
||||
EXPOSE 8080
|
||||
|
||||
Reference in New Issue
Block a user