* Chore disable git submodule for web-client and app-backend * Chore add newest source code of app-backend and web-client --------- Co-authored-by: Hien To <tominhhien97@gmail.com>
16 lines
183 B
Docker
16 lines
183 B
Docker
# Dockerfile
|
|
|
|
# alpine does not work with wrangler
|
|
FROM node
|
|
|
|
RUN mkdir -p /worker
|
|
|
|
WORKDIR /worker
|
|
|
|
RUN npm install -g wrangler
|
|
|
|
COPY . /worker
|
|
|
|
EXPOSE 8787
|
|
|
|
CMD ["wrangler", "dev"] |