This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.gunn.osgi.web.demo; | |
import java.lang.reflect.Field; | |
import org.osgi.framework.BundleActivator; | |
import org.osgi.framework.BundleContext; | |
import org.eclipse.osgi.framework.adaptor.ClassLoaderDelegate; | |
import org.eclipse.osgi.framework.internal.core.BundleHost; | |
import org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:14.04 | |
MAINTAINER Akira Yoshiyama <[email protected]> | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN mkdir -p /etc/apt /var/run | |
ADD sources.list /etc/apt/sources.list | |
RUN rm /etc/apt/sources.list.d/* | |
RUN apt-get update | |
RUN apt-get install --reinstall -y openssh-server python-apt upstart sysvinit-utils | |
RUN mv /sbin/initctl.distrib /sbin/initctl |