diff --git a/Dockerfile b/Dockerfile index 1814c0ca0..020e7e018 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,7 @@ COPY --from=build-stage /app/dist /app/dist RUN rm -rf /app/test /app/.temp VOLUME [ "/app/data/" ] -RUN chmod +x run.sh -CMD script.sh +RUN chmod +x /app/run.sh +CMD /app/run.sh # CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "80"] diff --git a/frontend/vue.config.js b/frontend/vue.config.js index 958c61e8f..d24793322 100644 --- a/frontend/vue.config.js +++ b/frontend/vue.config.js @@ -1,6 +1,6 @@ module.exports = { transpileDependencies: ["vuetify"], - publicPath: process.env.NODE_ENV === "production" ? "/static/" : "/", + publicPath: process.env.NODE_ENV === "production" ? "/" : "/", outputDir: process.env.NODE_ENV === "production" ? "./dist" : "../mealie/web", devServer: { proxy: { @@ -12,10 +12,10 @@ module.exports = { }, pluginOptions: { i18n: { - locale: 'en', - fallbackLocale: 'en', - localeDir: 'locales', - enableInSFC: true - } - } + locale: "en", + fallbackLocale: "en", + localeDir: "locales", + enableInSFC: true, + }, + }, };