Skip to content
Snippets Groups Projects
Commit cc6d797b authored by xaralis's avatar xaralis
Browse files

Add dockerfile for exposing nginx with built styleguide

parent fdbab358
No related branches found
No related tags found
No related merge requests found
node_modules
npm-debug.log
Dockerfile
.dockerignore
FROM node:13-alpine as build
RUN mkdir -p /home/node/ui-styleguide/node_modules
WORKDIR /home/node/ui-styleguide
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
# ---
FROM nginx:alpine
COPY --from=build /home/node/ui-styleguide/public /usr/share/nginx/html/
......@@ -224,7 +224,7 @@ gulp.task("tailwind-postcss", function (done) {
gulp.task("tailwind-postcss:production", function (done) {
return gulp
.src("./source/css/style.css")
.src("./source/css/style.pcss")
.pipe(
postcss([
require("postcss-import"),
......
......@@ -6,6 +6,9 @@
@apply px-1 border-r border-grey-100;
}
.candidate-card-list__item--last .candidate-card__wrapper {
@apply border-0;
@responsive {
.candidate-card-list__item--last .candidate-card__wrapper {
@apply border-0;
}
}
Source diff could not be displayed: it is too large. Options to address this: view the blob.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment