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.
2 parents 376ad39 + a4fe591 commit b813598Copy full SHA for b813598
Dockerfile
@@ -1,4 +1,5 @@
1
FROM node:16-alpine
2
+RUN apk add --no-cache tini
3
4
RUN mkdir /restana-static
5
WORKDIR /restana-static
@@ -12,5 +13,6 @@ COPY dist ./dist
12
13
14
RUN npm install --production
15
16
+ENTRYPOINT ["/sbin/tini", "--"]
17
CMD ["node", "index.js"]
18
package.json
@@ -1,6 +1,6 @@
{
"name": "restana-static",
- "version": "2.1.0",
+ "version": "2.1.1",
"description": "Efficiently serve static files using Node.js and Docker containers.",
"main": "index.js",
6
"scripts": {
0 commit comments