wip fix
This commit is contained in:
parent
df1639f264
commit
3200496738
|
|
@ -1,6 +1,9 @@
|
||||||
FROM oven/bun:1.0.18-debian as base
|
FROM oven/bun:1.0.18-debian as base
|
||||||
WORKDIR /app/prasi
|
WORKDIR /app/prasi
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
RUN apt-get update
|
||||||
|
RUN apt-get install unzip
|
||||||
RUN bun install
|
RUN bun install
|
||||||
EXPOSE 3000/tcp
|
EXPOSE 3000/tcp
|
||||||
CMD [ "bun", "run", "prod" ]
|
CMD [ "bun", "run", "prod" ]
|
||||||
|
|
@ -18,6 +18,7 @@ export const ensureNotRunning = async () => {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
s.end();
|
s.end();
|
||||||
|
console.log("hello");
|
||||||
done(false);
|
done(false);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
done(true);
|
done(true);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue