We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f2482c commit c60572aCopy full SHA for c60572a
.github/workflows/docker-build.yml
@@ -22,6 +22,8 @@ jobs:
22
image: lihebi/codepod-kernel-python
23
- context: ./runtime
24
image: lihebi/codepod-runtime
25
+ - context: ./
26
+ image: lihebi/codepod-dev
27
steps:
28
- name: Checkout
29
uses: actions/checkout@v3
Dockerfile
@@ -0,0 +1,17 @@
1
+FROM node:18
2
+
3
+WORKDIR /app
4
+COPY . .
5
6
+WORKDIR /app/api
7
+RUN yarn install --frozen-lockfile
8
+WORKDIR /app/proxy
9
10
+WORKDIR /app/runtime
11
12
+WORKDIR /app/ui
13
14
15
+WORKDIR /app/
16
17
+CMD ["tail", "-f", "/dev/null"]
0 commit comments