QF build
This commit is contained in:
@@ -3,7 +3,7 @@ WORKDIR /app
|
|||||||
COPY . .
|
COPY . .
|
||||||
RUN npm install && npm run build
|
RUN npm install && npm run build
|
||||||
|
|
||||||
FROM nginx:latest-alpine
|
FROM nginx:alpine
|
||||||
WORKDIR /usr/share/nginx/html
|
WORKDIR /usr/share/nginx/html
|
||||||
COPY --from=0 /app/dist .
|
COPY --from=0 /app/dist .
|
||||||
ENTRYPOINT [ "start-nginx.sh" ]
|
ENTRYPOINT ["nginx", "-g", "daemon off;"]
|
||||||
@@ -81,7 +81,6 @@ import { Component, Prop, Vue } from "vue-property-decorator";
|
|||||||
import Details from "@/components/Details.vue";
|
import Details from "@/components/Details.vue";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
const moment = require("moment");
|
const moment = require("moment");
|
||||||
const Config = require("@/config.json");
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
components: {
|
components: {
|
||||||
|
|||||||
Reference in New Issue
Block a user