Skip to content

Commit

Permalink
search bar changes
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronClaydon committed Dec 16, 2024
1 parent 62a23fb commit 3df04a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.21 AS builder
FROM alpine:3.15 AS builder

RUN apk add --update nodejs npm

Expand All @@ -10,7 +10,7 @@ RUN npm install
RUN npm run build


FROM alpine:3.21
FROM alpine:3.15

RUN apk add --update nginx

Expand All @@ -22,7 +22,7 @@ COPY nginx_config/default.conf /etc/nginx/conf.d/default.conf

COPY --from=builder /tmp/nginx/vue-single-page-app/dist/ /var/www/html/

RUN chown nginx:nginx /var/www/html
RUN chown -R nginx:nginx /var/www/html

EXPOSE 80

Expand Down
3 changes: 3 additions & 0 deletions src/components/SearchBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ export default {
},
searchClasses: {
default: ''
},
mode: {
}
},
components: {StopIcon, ServiceIcon},
Expand Down

0 comments on commit 3df04a0

Please sign in to comment.