Inline
Block equation looks good too.
FROM alpine as alpine | |
ENV os=alpine | |
RUN apk add bash | |
RUN bash -c 'ps -u $(id -u) -o "comm pid" 2>/dev/null || ps -o "comm,pid"' > /tmp/$os 2>&1 | |
FROM debian:stable-slim as debian | |
ENV os=debian | |
RUN apt-get update && apt-get install -y procps | |
RUN bash -c 'ps -u $(id -u) -o "comm pid" 2>/dev/null || ps -o "comm,pid"' > /tmp/$os 2>&1 | |
RUN apt-get install -y curl libevent-dev ncurses-dev build-essential bison pkg-config |
#include <stdint.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
// munged from https://github.com/simontime/Resead | |
namespace sead | |
{ | |
class Random | |
{ |
FROM node:13.5 as build | |
ARG VUE_APP_CDN | |
ARG VUE_APP_URL | |
ARG VUE_APP_SERVER | |
COPY . /app | |
WORKDIR /app | |
RUN npm i && npm run flow-typed | |
RUN npm run build |
DATABASES_HOST=hostname-of-database | |
DATABASES_USER=database-user-name | |
DATABASES_PASSWORD=database-password |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" /> | |
<style> | |
@import url("style.css"); | |
</style> | |
</head> | |
<div id="app"> | |
<div class="contact"> | |
<h1>Little Printer bypass</h1> |
--- run_gitbucket-not_work.sh 2018-10-29 09:00:05.985129514 +0900 | |
+++ run_gitbucket_work.sh 2018-10-10 14:26:07.023880573 +0900 | |
@@ -1,5 +1,5 @@ | |
#!/bin/sh | |
-/usr/bin/java \ | |
+LC_ALL=en_US.UTF-8 /usr/bin/java \ | |
-Dhttp.proxyHost=proxy.example.com \ | |
-Dhttp.proxyPort=8080 \ | |
-Dhttps.proxyHost=proxy.example.com \ |