mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
495 B
23 lines
495 B
7 years ago
|
FROM mhart/alpine-node:latest
|
||
|
|
||
|
RUN mkdir -p /usr/src/{app,bin,lib}
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
# only install production deps to keep image small
|
||
|
COPY package.json /usr/src/app
|
||
|
RUN npm install --production
|
||
|
|
||
|
COPY index.js /usr/src/app
|
||
|
COPY bin/ /usr/src/app/bin
|
||
|
COPY lib/ /usr/src/app/lib
|
||
|
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
||
|
|
||
|
# env
|
||
|
ENV DATABASE_HOST 127.0.0.1
|
||
|
ENV DATABASE_USER root
|
||
|
ENV DATABASE_PASSWORD password
|
||
|
ENV DATABASE_NAME sakila
|
||
|
|
||
|
EXPOSE 3000
|
||
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|