Skip to content

Commit

Permalink
Merge branch 'switch-to-light-theme'
Browse files Browse the repository at this point in the history
  • Loading branch information
junelsolis committed Aug 29, 2024
2 parents 1751990 + c6aeb4a commit a86f524
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Stage 1: build Vue app

FROM node:20 as build-stage
FROM node:20 AS build-stage
WORKDIR /app
COPY package*.json ./
RUN npm install
Expand All @@ -9,7 +9,7 @@ COPY ./ ./
RUN npm run build

# Stage 2: Serve Vue app with nginx
FROM nginx:1.19 as production-stage
FROM nginx:1.19 AS production-stage
COPY --from=build-stage /app/dist /usr/share/nginx/html

COPY nginx.conf /etc/nginx/conf.d/default.conf
Expand Down
4 changes: 2 additions & 2 deletions src/components/SampleImageGrid.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<script setup lang="ts">
import { ref, watch } from 'vue'
const emit = defineEmits(['is-waiting'])
import { useRouter } from 'vue-router'
import { TaskUploader } from '../classes/TaskUploader'
import { StageToolClient } from '../classes/StageToolClient'
import { useTaskStore } from '../stores/task'
import { useRouter } from 'vue-router'
const emit = defineEmits(['is-waiting'])
const router = useRouter()
const taskStore = useTaskStore()
const selectedFiles = ref<File[]>([])
Expand Down

0 comments on commit a86f524

Please sign in to comment.