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