11 lines
173 B
Docker
11 lines
173 B
Docker
|
FROM oven/bun:debian
|
||
|
|
||
|
SHELL ["/bin/bash", "-c"]
|
||
|
|
||
|
RUN apt-get update
|
||
|
RUN apt-get install -y openssl openssh-client
|
||
|
|
||
|
WORKDIR /app/docker/setup
|
||
|
|
||
|
ENTRYPOINT ["bun", "index.ts"]
|