mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
18 lines
290 B
Plaintext
18 lines
290 B
Plaintext
FROM node:18-alpine
|
|
|
|
WORKDIR /home/dbgate-docker
|
|
|
|
RUN apk --no-cache upgrade \
|
|
&& apk --no-cache add \
|
|
iputils
|
|
|
|
COPY . .
|
|
|
|
RUN ["chmod", "+x", "/home/dbgate-docker/entrypoint.sh"]
|
|
|
|
WORKDIR /home/dbgate-docker
|
|
EXPOSE 3000
|
|
VOLUME /root/.dbgate
|
|
|
|
CMD ["/home/dbgate-docker/entrypoint.sh"]
|