Skip to content

Commit 0488f22

Browse files
committed
fix failing api docker build
1 parent bfcde50 commit 0488f22

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

api/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ FROM node:16-alpine
22
ENV NODE_ENV=production
33
ENV SENTRY_DSN="https://9b9761216607428180ea3b32bd1c8e58@o140996.ingest.sentry.io/4504645996576768"
44
LABEL org.opencontainers.image.source=https://github.com/tdjsnelling/sqtracker
5-
WORKDIR /sqtracker/api
5+
WORKDIR /sqtracker
66
COPY . .
77
RUN yarn install
8+
RUN echo "{}" > /config.js
89
RUN yarn build
910
EXPOSE 3001
1011
CMD yarn start

api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sqtracker/api",
3-
"version": "1.0.0-beta.2",
3+
"version": "1.0.0-beta.3",
44
"private": true,
55
"license": "GPL-3.0-only",
66
"type": "module",

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sqtracker/client",
3-
"version": "1.0.0-beta.2",
3+
"version": "1.0.0-beta.3",
44
"private": true,
55
"license": "GPL-3.0-only",
66
"scripts": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sqtracker",
3-
"version": "1.0.0-beta.2",
3+
"version": "1.0.0-beta.3",
44
"private": true,
55
"license": "GPL-3.0-only",
66
"workspaces": [

0 commit comments

Comments
 (0)