Task: Add Dockerfile and support DroneCI
This commit is contained in:
parent
7b402b0559
commit
e3bb729619
3
.dockerignore
Normal file
3
.dockerignore
Normal file
@ -0,0 +1,3 @@
|
||||
node_modules/
|
||||
.git/
|
||||
.husky/
|
10
.drone.yml
Normal file
10
.drone.yml
Normal file
@ -0,0 +1,10 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: ci
|
||||
steps:
|
||||
- name: build
|
||||
image: d.ctdn.net/node
|
||||
commands:
|
||||
- npm config set registry https://r.ctdn.net
|
||||
- npm install
|
||||
- npm run build
|
22
Dockerfile
Normal file
22
Dockerfile
Normal file
@ -0,0 +1,22 @@
|
||||
FROM cubetiq/calpine-node:latest
|
||||
LABEL maintainer="sombochea@cubetiqs.com"
|
||||
|
||||
RUN echo "Starting setting up timezone to ${TIMEZ}..."
|
||||
ENV TIMEZ=Asia/Phnom_Penh
|
||||
# For Alpine
|
||||
# Setup Timezone
|
||||
RUN apk update && \
|
||||
apk add --no-cache tzdata && \
|
||||
cp /usr/share/zoneinfo/${TIMEZ} /etc/localtime && \
|
||||
echo ${TIMEZ} > /etc/timezone
|
||||
|
||||
WORKDIR /app
|
||||
COPY . /app
|
||||
|
||||
RUN npm config set registry https://r.ctdn.net
|
||||
RUN npm config get registry
|
||||
RUN npm install
|
||||
RUN npm run build
|
||||
|
||||
EXPOSE 3000
|
||||
CMD [ "npm" , "serve"]
|
Loading…
Reference in New Issue
Block a user