Skip to content
This repository has been archived by the owner on Nov 6, 2021. It is now read-only.

basaltinc/knapsack-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

knapsack-docker

On Docker Hub here

Usage

In a Dockerfile:

FROM basaltinc/knapsack-docker:latest
WORKDIR /app
COPY . .
EXPOSE 3999
RUN npm install && NODE_ENV=production npm run build

CMD NODE_ENV=production npm run serve