Skip to content

Commit

Permalink
Merge branch 'master' into api-reference
Browse files Browse the repository at this point in the history
  • Loading branch information
simlarsen committed Sep 18, 2024
2 parents fe16146 + 1b74d94 commit 5725d30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1278,7 +1278,7 @@ jobs:
uses: docker/build-push-action@v4
with:
file: ./Workflow/Dockerfile
context: ./Workflow
context: .
# arm64 is not supported by the base image of the LLM
platforms: linux/amd64
push: true
Expand Down
4 changes: 2 additions & 2 deletions Workflow/Dockerfile.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ ENV PRODUCTION=true
WORKDIR /usr/src/app

# Install app dependencies
COPY ./Worker/package*.json /usr/src/app/
COPY ./Workflow/package*.json /usr/src/app/
# Set version in ./App/package.json to the APP_VERSION
RUN sed -i "s/\"version\": \".*\"/\"version\": \"$APP_VERSION\"/g" /usr/src/app/package.json
RUN npm install
Expand All @@ -58,7 +58,7 @@ EXPOSE 3099
CMD [ "npm", "run", "dev" ]
{{ else }}
# Copy app source
COPY ./Worker /usr/src/app
COPY ./Workflow /usr/src/app
# Bundle app source
RUN npm run compile
#Run the app
Expand Down

0 comments on commit 5725d30

Please sign in to comment.